home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue60 / Construc / MAINFORM.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-07-05  |  296 b   |  22 lines

  1. unit MainForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  5.  
  6. type
  7.   TForm1 = class(TForm)
  8.   private
  9.     { Private declarations }
  10.   public
  11.     { Public declarations }
  12.   end;
  13.  
  14. var
  15.   Form1: TForm1;
  16.  
  17. implementation
  18.  
  19. {$R *.DFM}
  20.  
  21. end.
  22.